

.contact-section {
    padding: 80px 20px;
    background-color: #f8fafc; 
    font-family: Arial, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    align-items: stretch;
}

/* Colonna di Sinistra */
.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.contact-accent-line {
    width: 60px;
    height: 4px;
    background-color: #36AD49; 
    margin: 15px 0 30px 0;
    border-radius: 2px;
}

/* Elementi della lista contatti */
.contact-details-list {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.contact-icon {
    font-size: 24px;
    margin-right: 20px;
    background-color: #f1f5f9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-text h3 {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-text p a {
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.contact-text p a:hover {
    color: #36AD49;
}

/* Box Orari */
.contact-hours-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.contact-hours-box h3, .contact-social-box h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-hours-box ul {
    list-style: none;
    padding: 0;
}

.contact-hours-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #475569;
    font-size: 15px;
}

.contact-hours-box ul li:last-child {
    border-bottom: none;
}

.closed-tag {
    color: #ef4444;
    font-weight: bold;
}

/* Box Social */
.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icons a {
    transition: transform 0.2s ease;
}

.contact-social-icons a:hover {
    transform: translateY(-3px);
}

/* Colonna di Destra: Wrapper Mappa */
.contact-map-column {
    width: 100%;
    min-height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr; /* Colonna singola su schermi medio-piccoli */
        gap: 40px;
    }
    
    .contact-map-column {
        height: 400px;
    }
}


